home *** CD-ROM | disk | FTP | other *** search
/ Aminet 28 / Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso / Aminet / dev / misc / gms_dev.lha / GMSDev / Source / C / README.TXT
Encoding:
Text File  |  1998-08-22  |  1.1 KB  |  37 lines

  1.  
  2. Each C compiler requires a special set up or command line to compile the
  3. demos.  Here are the details on the most popular compilers:
  4.  
  5.  
  6. SAS/C
  7.  
  8.   Each directory has a SCOPTIONS file that contains the necessary
  9.   parameters.  To compile a demo, just go to its directory and run:
  10.  
  11.    1> SC [file.c]
  12.  
  13. Dice C
  14.  
  15.   This is like SAS/C, only the command line is a bit longer:
  16.  
  17.   1> dcc -l0 -mD dpk.o tags.o [file.c] -o [executable]
  18.  
  19.   You will need to copy the dpk.o and tags.o files to the DLIB: directory
  20.   (you can find these files in GMSDev:Includes/lib/).
  21.  
  22. Storm C
  23.  
  24.   There is a StormC project in the Blitter/ source directory.  You can use
  25.   it to compile the PixelList demo, and the template can be applied to the
  26.   other demos.
  27.  
  28. VBCC
  29.  
  30.   In order to get this compiler to work, it requires conversion of the .fd
  31.   files to its inline file format.  Or alternatively the fd2lib program
  32.   can be used to create a special gms.lib file.  I have not tried to do
  33.   either yet, I am too busy to do this.  If anyone out there does the
  34.   necessary work, please send me the resulting files so that I can include
  35.   them in future releases.
  36.  
  37.